home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / tobby_ur.swf / scripts / frame_40 / PlaceObject2_196_187 / CLIPACTIONRECORD onClipEvent(keyUp).as next >
Text File  |  2010-11-09  |  331b  |  18 lines

  1. onClipEvent(keyUp){
  2.    var Lastkey = key.getCode();
  3.    if(LastKey == 32)
  4.    {
  5.       this.inCode = "";
  6.    }
  7.    else
  8.    {
  9.       var inkey = string.fromCharCode(key.getAscii());
  10.       this.inCode += inkey;
  11.       trace(this.inCode);
  12.       if(this.inCode == "d")
  13.       {
  14.          _root.debugMode = true;
  15.       }
  16.    }
  17. }
  18.